From: Juanma Barranquero Date: Thu, 14 Jun 2007 00:14:07 +0000 (+0000) Subject: (erc-scroll-to-bottom): Remove redundant check. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~18399 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0dbd9320220b9629b4492cd5c5ccb533ceed847a;p=emacs.git (erc-scroll-to-bottom): Remove redundant check. --- diff --git a/lisp/erc/erc-goodies.el b/lisp/erc/erc-goodies.el index 933e6b34b52..6820f91628a 100644 --- a/lisp/erc/erc-goodies.el +++ b/lisp/erc/erc-goodies.el @@ -77,7 +77,7 @@ You can control which line is recentered to by customizing the variable `erc-input-line-position'. DISPLAY-START is ignored." - (if (and window (window-live-p window)) + (if (window-live-p window) ;; Temporarily bind resize-mini-windows to nil so that users who have it ;; set to a non-nil value will not suffer from premature minibuffer ;; shrinkage due to the below recenter call. I have no idea why this